home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevsppr.c < prev    next >
C/C++ Source or Header  |  1996-09-17  |  5KB  |  189 lines

  1. /* Copyright (C) 1992, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevsppr.c */
  20. /* SPARCprinter driver for Ghostscript */
  21. #include "gdevprn.h"
  22. #include <stdio.h>
  23. #include <sys/types.h>
  24. #include <sys/ioccom.h>
  25. #include <unbdev/lpviio.h>
  26.  
  27. /*
  28.    Thanks to Martin Schulte (schulte@thp.Uni-Koeln.DE) for contributing
  29.    this driver to Ghostscript.  He supplied the following notes.
  30.  
  31. The device-driver (normally) returns two differnt types of Error-Conditions,
  32. FATALS and WARNINGS. In case of a fatal, the print routine returns -1, in
  33. case of a warning (such as paper out), a string describing the error is
  34. printed to stdout and the output-operation is repeated after five seconds.
  35.  
  36. A problem is that not all possible errors seem to return the correct error,
  37. under some circumstance I get the same response as if an error repeated,
  38. that's why there is this the strange code about guessing the error.
  39.  
  40. I didn't implement asynchronous IO (yet), because "`normal"' multipage-
  41. printings like TEX-Output seem to be printed with the maximum speed whereas
  42. drawings normally occur as one-page outputs, where asynchronous IO doesn't
  43. help anyway.
  44. */
  45.  
  46. private dev_proc_open_device(sparc_open);
  47. private dev_proc_print_page(sparc_print_page);
  48.  
  49. #define SPARC_MARGINS_A4    0.15, 0.12, 0.12, 0.15
  50. #define SPARC_MARGINS_LETTER    0.15, 0.12, 0.12, 0.15
  51.  
  52. gx_device_procs prn_sparc_procs =
  53.   prn_procs(sparc_open, gdev_prn_output_page, gdev_prn_close);
  54.  
  55. gx_device_printer far_data gs_sparc_device =
  56. prn_device(prn_sparc_procs,
  57.   "sparc",
  58.   DEFAULT_WIDTH_10THS,DEFAULT_HEIGHT_10THS,
  59.   400,400,
  60.   0,0,0,0,
  61.   1,
  62.   sparc_print_page);
  63.  
  64. /* Open the printer, and set the margins. */
  65. private int
  66. sparc_open(gx_device *pdev)
  67. {    /* Change the margins according to the paper size. */
  68.     const float _ds *m;
  69.     static const float m_a4[4] = { SPARC_MARGINS_A4 };
  70.     static const float m_letter[4] = { SPARC_MARGINS_LETTER };
  71.  
  72.     m = (pdev->height / pdev->y_pixels_per_inch >= 11.1 ? m_a4 : m_letter);
  73.     gx_device_set_margins(pdev, m, true);
  74.     return gdev_prn_open(pdev);
  75. }
  76.  
  77. char *errmsg[]={
  78.   "EMOTOR",
  79.   "EROS",
  80.   "EFUSER",
  81.   "XEROFAIL",
  82.   "ILCKOPEN",
  83.   "NOTRAY",
  84.   "NOPAPR",
  85.   "XITJAM",
  86.   "MISFEED",
  87.   "WDRUMX",
  88.   "WDEVEX",
  89.   "NODRUM",
  90.   "NODEVE",
  91.   "EDRUMX",
  92.   "EDEVEX",
  93.   "ENGCOLD",
  94.   "TIMEOUT",
  95.   "EDMA",
  96.   "ESERIAL"
  97.   };
  98.  
  99. private char *
  100. err_code_string(int err_code)
  101.   {
  102.   if ((err_code<EMOTOR)||(err_code>ESERIAL))
  103.     {
  104.     char buffer[80];
  105.     sprintf(buffer,"err_code out of range: %d",err_code);
  106.     return buffer;
  107.     }
  108.   return errmsg[err_code];
  109.   }
  110.  
  111. int warning=0;
  112.  
  113. private int
  114. sparc_print_page(gx_device_printer *pdev, FILE *prn)
  115.   {
  116.   struct lpvi_page lpvipage;
  117.   struct lpvi_err lpvierr;
  118.   char *out_buf;
  119.   int out_size;
  120.   if (ioctl(fileno(prn),LPVIIOC_GETPAGE,&lpvipage)!=0)
  121.     {
  122.     fprintf(stderr,"sparc_print_page: LPVIIOC_GETPAGE failed\n");
  123.     return -1;
  124.     }
  125.   lpvipage.bitmap_width=gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  126.   lpvipage.page_width=lpvipage.bitmap_width*8;
  127.   lpvipage.page_length=pdev->height;
  128.   lpvipage.resolution= (pdev->x_pixels_per_inch == 300 ? 300 : 400);
  129.   if (ioctl(fileno(prn),LPVIIOC_SETPAGE,&lpvipage)!=0)
  130.     {
  131.     fprintf(stderr,"sparc_print_page: LPVIIOC_SETPAGE failed\n");
  132.     return -1;
  133.     }
  134.   out_size=lpvipage.bitmap_width*lpvipage.page_length;
  135.   out_buf=gs_malloc(out_size,1,"sparc_print_page: out_buf");
  136.   gdev_prn_copy_scan_lines(pdev,0,out_buf,out_size);
  137.   while (write(fileno(prn),out_buf,out_size)!=out_size)
  138.     {
  139.     if (ioctl(fileno(prn),LPVIIOC_GETERR,&lpvierr)!=0)
  140.       {
  141.       fprintf(stderr,"sparc_print_page: LPVIIOC_GETERR failed\n");
  142.       return -1;
  143.       }
  144.     switch (lpvierr.err_type)
  145.       {
  146.       case 0:
  147.     if (warning==0)
  148.           {
  149.           fprintf(stderr,
  150.             "sparc_print_page: Printer Problem with unknown reason...");
  151.           fflush(stderr);
  152.           warning=1;
  153.           }
  154.     sleep(5);
  155.     break;
  156.       case ENGWARN:
  157.     fprintf(stderr,
  158.           "sparc_print_page: Printer-Warning: %s...",
  159.           err_code_string(lpvierr.err_code));
  160.     fflush(stderr);
  161.     warning=1;
  162.     sleep(5);
  163.     break;
  164.       case ENGFATL:
  165.     fprintf(stderr,
  166.           "sparc_print_page: Printer-Fatal: %s\n",
  167.           err_code_string(lpvierr.err_code));
  168.     return -1;
  169.       case EDRVR:
  170.     fprintf(stderr,
  171.           "sparc_print_page: Interface/driver error: %s\n",
  172.           err_code_string(lpvierr.err_code));
  173.     return -1;
  174.       default:
  175.     fprintf(stderr,
  176.           "sparc_print_page: Unknown err_type=%d(err_code=%d)\n",
  177.           lpvierr.err_type,lpvierr.err_code);
  178.     return -1;
  179.       }
  180.     }
  181.   if (warning==1)
  182.     {
  183.     fprintf(stderr,"OK.\n");
  184.     warning=0;
  185.     }
  186.   gs_free(out_buf,out_size,1,"sparc_print_page: out_buf");
  187.   return 0;
  188.   }
  189.